home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000224_news@newsmaster….columbia.edu _Tue Oct 27 11:54:22 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA03166
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 27 Oct 1998 11:54:21 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA17605
  7.     for kermit.misc@watsun; Tue, 27 Oct 1998 11:54:21 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: /before and /after file selection switches
  12. Date: 27 Oct 1998 16:54:19 GMT
  13. Organization: Columbia University
  14. Lines: 28
  15. Message-ID: <714trr$dsv$1@apakabar.cc.columbia.edu>
  16. References: <714odc$jj3$1@nnrp1.dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9424
  19.  
  20. In article <714odc$jj3$1@nnrp1.dejanews.com>,  <nina525@my-dejanews.com> wrote:
  21.  
  22. : Can anyone suggest a syntax for a command that uses the file collision
  23. : update feature and the /before and /after file selection switches on
  24. : Solaris 2.6?
  25. It depends on exactly what you are trying to accomplish.  If, for example,
  26. you want to send files from computer A that were created between two
  27. specific date-times to computer B, and have computer B reject those that
  28. it already has (based on name and creation date/time), then on computer A:
  29.  
  30.   send /before:<date-time> /after:<date-time> <filespec>
  31.  
  32. and on computer B:
  33.  
  34.   set file collision update
  35.   receive
  36.  
  37. Note: SEND-command switches are available in C-Kermit 6.1, currently in
  38. Beta test:
  39.  
  40.   http://www.columbia.edu/kermit/ck61.html
  41.  
  42. and in Kermit 95 1.1.14 and later:
  43.  
  44.   http://www.columbia.edu/kermit/k95.html
  45.  
  46. - Frank